*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Anton', sans-serif;
}
/* section{
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 100px;
    background: #121212;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
} */
section {
    position: relative;
    width: 100%;
    min-height: 100vh;
}

header{
    background-color:#121212;
    margin-left: 0px;
    margin-right: 0px;
    padding: 10px;
    text-align: right;
}
body{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #121212;
    min-height: 100vh;
}

.circle{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(9, 27, 30);
    clip-path: circle(30% at bottom right);
}
.circle2{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(9, 27, 30);
    clip-path: circle(30% at top left);
}
.caixa iframe{
    width: 700px;
    height: 400px;
}
.caixa{
    position: relative;
    width: 700px;
    height: 400px;
    color: #fff;
    background-color: #121212;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    margin: 120px;
     left: 15%;
    
}
.caixa::before, .caixa::after{
    content: '' ;
    position: absolute;
    z-index: -1;
    width: calc(100% + 30px);
    height: calc(100% + 30px);
    background: linear-gradient(45deg,  rgb(20, 21, 35), rgb(9, 27, 30), rgb(24, 62, 70), rgb(38, 102, 115), rgb(62, 161, 180), rgb(20, 21, 35), rgb(9, 27, 30), rgb(24, 62, 70));
    /* background: linear-gradient(45deg, #ffff00 , #00ff00, #0099ff, #001aff,
    #a200ff, #ff0055, #ff0000,  #ffff00 , #00ff00, #0099ff, #001aff,
    #a200ff) ; */
    background-size: 300% ;
    border-radius: 8px ;
    animation: AnimarBorda 8s linear infinite;
}
@keyframes AnimarBorda {
    0%{
        background-position:0%;
    }
    100%{
        background-position:300%;
    }
}
.caixa::after{
    filter: blur(50px);
}